home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000377_news@columbia.edu _Thu Jun 15 11:39:20 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA11234
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 15 Jun 2000 11:39:20 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA00362
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 15 Jun 2000 11:39:19 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id LAA17935
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 15 Jun 2000 11:31:50 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: success Re: solaris2.6, ckermit 197 problem.
  14. Date: 15 Jun 2000 15:31:50 GMT
  15. Organization: Columbia University
  16. Message-ID: <8iast6$hgc$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <961047373.362751@iris.nyx.net>,
  20. arthur wouk <awouk@blackhole.nyx.net> wrote:
  21. : i finally switched from rts/cts flow control to xon/xoff, and i am
  22. : connecting regularly. once, while still on rts/cts i did make a
  23. : connection, but i could not repeat it. so i played with all known
  24. : parameters till the switch to xon/xoff did it.
  25. : yet, with the same release of ckermit, the same modem type, under
  26. : sol2.4 on my ss2, rts/cts is just fine. any explanations?
  27. This was discussed here in a thread that started on April 25th.
  28.  
  29. The hardware flow-control support for Solaris in Kermit was added a long
  30. time ago -- at or before Solaris 2.3 -- and it worked fine.  At some point
  31. thereafter, I'm not sure when, maybe Solaris 2.4 or 2.5, Solaris's API for
  32. hardware flow contol changed out from underneath Kermit.  I didn't find out
  33. about it until after C-Kermit 7.0 was released.
  34.  
  35. To get C-Kermit's hardware flow-control working right in recent Solaris
  36. versions, you need to rebuild C-Kermit from source; cd to the C-Kermit
  37. source-code directory, then:
  38.  
  39.   make clean
  40.   make solarisXX KFLAGS=-DPOSIX_CRTSCTS
  41.  
  42. where "solarisXX" is the appropriate makefile target (solaris25, solaris26,
  43. solaris7, solaris8, etc, or if you have gcc, solaris25g, solaris26g, ...)
  44.  
  45. If you don't have the source code, you can find it here:
  46.  
  47.   http://www.columbia.edu/kermit/ckermit.html
  48.  
  49. - Frank